home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Explosion
/
Software Explosion (Fore-Matt Home Computing)(1996).iso
/
games
/
workbench
/
lander_2
/
source
/
conv8svx.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-01
|
345b
|
26 lines
/* load8test - test load8svx */
#include <exec/types.h>
#include <stdio.h>
extern int svx_to_c();
main(argc,argv)
int argc;
char *argv[];
{
if (argc != 3)
{
fputs("usage: conv8svx infile outfile\n",stderr);
exit(-1);
}
if (svx_to_c(argv[1],argv[2]) < 0)
{
fputs("looks like svx_to_c failed\n",stderr);
exit(-2);
}
exit(0);
}